home *** CD-ROM | disk | FTP | other *** search
Text File | 2000-08-23 | 2.6 KB | 109 lines | [TEXT/R*ch] |
- # This file is based on a file included with the standard distribution of ircII
- # It contains aliases that mostly create atmosphere - little expressions that
- # you can use express opinions while saving typing.
-
- # basical and action are automatically loaded into each connection
- # when the connection is opened
-
- # If the variable 'GENDER' is set, 'POSSESSIVE' is set accordingly
- # and used by some actions, but it works also without.
-
- # Valid values are M and F
-
- assign GENDER M
-
- if (GENDER) {
- if ([$GENDER] == [F]) {
- assign POSSESSIVE her
- } {
- assign POSSESSIVE his
- }
- } {
- assign POSSESSIVE the
- }
-
-
- # These commands can be used with or without an adverb of your choice.
- #
- alias applaud me applauds
- alias bounce me bounces around
- alias chuckle me chuckles
- alias clap me claps $POSSESSIVE hands
- alias giggle me giggles
- alias grin me grins
- alias groan me groans
- alias moan me moans
- alias nod me nods
- alias purr me purrs
- alias scratch me scratches $POSSESSIVE head
- alias shrug me shrugs
- alias sigh me sighs
- alias smile me smiles
- alias wave me waves goodbye
- alias wink me winks
- alias yawn me yawns
-
- # Same type, but a bit more complex (with 'defaults').
- #
- alias laugh {
- if ([$*]) { me laughs $*
- } { me falls down laughing.
- }
- }
- alias sing {
- if ([$*]) { me sings $*
- } { me sings "O sole mio, sta'n fronte a te..."
- }
- }
-
- alias dance {
- if ([$*]) { me sweeps $0 across the dance floor $1-
- } { me does the dance of the disco-duck.
- }
- }
- alias shake {
- if ([$*]) { me shakes hands with $*
- } { me shakes $POSSESSIVE head.
- }
- }
-
- alias e {
- me eats $0
- say *BURP*
- }
-
-
- # These can only be used without arguments.
- #
- alias bow me bows gracefully.
- alias burp me burps rudely.
- alias cough me coughs noisily.
- alias cry me bursts into tears. Waaaaah!
- alias gasp me gasps in astonishment!
- alias scream me screams loudly: Aaarrrgghh!!!
- alias shiver me shivers from the cold. Brrrr!
- alias snap me snaps with $POSSESSIVE fingers.
- alias sneeze me sneezes. Gesundheit!
- alias snore me snores loudly. Zzzz...
- alias whistle me whistles a well known melody.
- alias wiggle me wiggles $POSSESSIVE bottom.
-
- # These require a nickname as argument.
- # (Or 'you' if you are in a /query).
- #
- alias comfort me comforts
- alias cuddle me cuddles
- alias hug me hugs
- alias kiss me kisses
- alias love me whispers sweet words of love to
- alias pat me pats $0 on the shoulders $1-
- alias poke me pokes $0 in the ribs $1-
- alias slap me slaps $0 in the face $1-
- alias spit me spits on
- alias thank me thanks $* from the heart.
- alias kb kick $C $0 It's time to kick $0 and chew bubblegum. And I'm all out of bubblegum.
- alias trout me slaps $0 around with a fresh trout
- alias p me nods at $0 and gives him a small kipper
-
-
-